home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / dev / gcc / ixemul_src.lha / ixemul-41.0 / library / ix_stubs.c < prev    next >
C/C++ Source or Header  |  1995-05-28  |  2KB  |  98 lines

  1. /*
  2.  *  This file is part of ixemul.library for the Amiga.
  3.  *  Copyright (C) 1991, 1992  Markus M. Wild
  4.  *
  5.  *  This library is free software; you can redistribute it and/or
  6.  *  modify it under the terms of the GNU Library General Public
  7.  *  License as published by the Free Software Foundation; either
  8.  *  version 2 of the License, or (at your option) any later version.
  9.  *
  10.  *  This library is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  *  Library General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU Library General Public
  16.  *  License along with this library; if not, write to the Free
  17.  *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  *
  19.  *  ix_stubs.c,v 1.1.1.1 1994/04/04 04:29:40 amiga Exp
  20.  *
  21.  *  ix_stubs.c,v
  22.  * Revision 1.1.1.1  1994/04/04  04:29:40  amiga
  23.  * Initial CVS check in.
  24.  *
  25.  *  Revision 1.2  1992/08/09  20:56:15  amiga
  26.  *  add setgid
  27.  *
  28.  *  Revision 1.1  1992/05/22  01:48:08  mwild
  29.  *  Initial revision
  30.  *
  31.  */
  32.  
  33. #define KERNEL
  34. #include "ixemul.h"
  35. #include "kprintf.h"
  36.  
  37. void
  38. endpwent (void) 
  39. {
  40. }
  41.  
  42. int
  43. sync (void)
  44. {
  45.   /* could probably walk the entire file table and fsync each, but
  46.      this is too much of a nuisance ;-)) */
  47.   errno = ENOSYS;
  48.   KPRINTF (("&errno = %lx, errno = %ld\n", &errno, errno));
  49.   return -1;
  50. }
  51.  
  52. int
  53. fork (void)
  54. {
  55.   errno = ENOSYS;
  56.   KPRINTF (("&errno = %lx, errno = %ld\n", &errno, errno));
  57.   return -1;
  58. }
  59.  
  60. int
  61. mkfifo (const char *path, int mode)
  62. {
  63.   errno = ENOSYS;
  64.   KPRINTF (("&errno = %lx, errno = %ld\n", &errno, errno));
  65.   return -1;
  66. }
  67.  
  68. int
  69. mknod (const char *path, int mode, int dev)
  70. {
  71.   errno = ENOSYS;
  72.   KPRINTF (("&errno = %lx, errno = %ld\n", &errno, errno));
  73.   return -1;
  74. }
  75.  
  76. int
  77. setuid (int uid)
  78. {
  79.   /* just always succeed... */
  80.   return 0;
  81. }
  82.  
  83. int
  84. setgid (int gid)
  85. {
  86.   /* just always succeed... */
  87.   return 0;
  88. }
  89.  
  90. int
  91. nice (int niceval)
  92. {
  93.   errno = ENOSYS;
  94.   KPRINTF (("&errno = %lx, errno = %ld\n", &errno, errno));
  95.   return -1;
  96. }
  97.  
  98.